const net/netip.digits
12 uses
net/netip (current package)
netip.go#L816: const digits = "0123456789abcdef"
netip.go#L824: b = append(b, digits[x/100])
netip.go#L827: b = append(b, digits[x/10%10])
netip.go#L829: return append(b, digits[x%10])
netip.go#L838: b = append(b, digits[x>>12])
netip.go#L841: b = append(b, digits[x>>8&0xf])
netip.go#L844: b = append(b, digits[x>>4&0xf])
netip.go#L846: return append(b, digits[x&0xf])
netip.go#L851: return append(b, digits[x>>12], digits[x>>8&0xf], digits[x>>4&0xf], digits[x&0xf])
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |